3 This file includes the entire juce source tree via the amalgamated file.
5 You could add the amalgamated file directly to your project, but doing it
6 like this allows you to put your app's config settings in the
7 juce_AppConfig.h file and have them applied to both the juce headers and
11 #include "juce_AppConfig.h"
13 // This is where all the juce code gets included, via this amalgamated file..
14 #include "../../../juce_amalgamated.cpp"
17 /* NB. A handy tip is that if you're doing a lot of debugging into the juce code, then stepping through
18 the amalgamated file can be slow or impossible for the debugger. But if you use the following line
19 instead of the one above, then it makes it a lot easier..
21 //#include "../../../amalgamation/juce_amalgamated_template.cpp"